603 lines
168 KiB
SQL
603 lines
168 KiB
SQL
-- MySQL dump 10.13 Distrib 8.0.34, for Linux (x86_64)
|
||
--
|
||
-- Host: localhost Database: automedsys_blog
|
||
-- ------------------------------------------------------
|
||
-- Server version 8.0.34-0ubuntu0.22.04.1
|
||
|
||
/*!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 */;
|
||
/*!50503 SET NAMES utf8mb4 */;
|
||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||
|
||
--
|
||
-- Current Database: `automedsys_blog`
|
||
--
|
||
|
||
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `automedsys_blog` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
|
||
|
||
USE `automedsys_blog`;
|
||
|
||
--
|
||
-- Table structure for table `wp_commentmeta`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_commentmeta`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_commentmeta` (
|
||
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`comment_id` bigint unsigned NOT NULL DEFAULT '0',
|
||
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
PRIMARY KEY (`meta_id`),
|
||
KEY `comment_id` (`comment_id`),
|
||
KEY `meta_key` (`meta_key`(191))
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_commentmeta`
|
||
--
|
||
|
||
LOCK TABLES `wp_commentmeta` WRITE;
|
||
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_comments`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_comments`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_comments` (
|
||
`comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
|
||
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`comment_karma` int NOT NULL DEFAULT '0',
|
||
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
|
||
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
|
||
`comment_parent` bigint unsigned NOT NULL DEFAULT '0',
|
||
`user_id` bigint unsigned NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`comment_ID`),
|
||
KEY `comment_post_ID` (`comment_post_ID`),
|
||
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
|
||
KEY `comment_date_gmt` (`comment_date_gmt`),
|
||
KEY `comment_parent` (`comment_parent`),
|
||
KEY `comment_author_email` (`comment_author_email`(10))
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_comments`
|
||
--
|
||
|
||
LOCK TABLES `wp_comments` WRITE;
|
||
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_links`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_links`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_links` (
|
||
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
|
||
`link_owner` bigint unsigned NOT NULL DEFAULT '1',
|
||
`link_rating` int NOT NULL DEFAULT '0',
|
||
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
PRIMARY KEY (`link_id`),
|
||
KEY `link_visible` (`link_visible`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_links`
|
||
--
|
||
|
||
LOCK TABLES `wp_links` WRITE;
|
||
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_options`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_options`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_options` (
|
||
`option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
|
||
PRIMARY KEY (`option_id`),
|
||
UNIQUE KEY `option_name` (`option_name`),
|
||
KEY `autoload` (`autoload`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=812390 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_options`
|
||
--
|
||
|
||
LOCK TABLES `wp_options` WRITE;
|
||
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
|
||
INSERT INTO `wp_options` VALUES (1,'siteurl','http://blog.automedsys.net','yes'),(2,'home','http://blog.automedsys.net','yes'),(3,'blogname','autoMedSys','yes'),(4,'blogdescription','Automated Medical Records Systems ','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ameye@automedsys.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','','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','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','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','','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:96:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$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: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:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:2:{i:0;s:33:\"nimble-builder/nimble-builder.php\";i:1;s:24:\"wordpress-seo/wp-seo.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','a:3:{i:0;s:60:\"/var/www/html/blog/public/wp-content/themes/hueman/style.css\";i:1;s:71:\"/var/www/html/blog/public/wp-content/themes/hueman/content-featured.php\";i:3;s:0:\"\";}','no'),(40,'template','hueman','yes'),(41,'stylesheet','hueman','yes'),(42,'comment_registration','','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','posts','yes'),(52,'tag_base','','yes'),(53,'show_avatars','','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','48','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1694572255','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','51917','yes'),(100,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s: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;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:8:{i:3;a:1:{s:7:\"content\";s:160:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2>Recent Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /--></div>\n<!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:71:\"<!-- wp:group -->\n<div class=\"wp-block-group\"></div>\n<!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:152:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2>Archives</h2>\n<!-- /wp:heading -->\n\n<!-- wp:archives /--></div>\n<!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:156:\"<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:heading -->\n<h2>Categories</h2>\n<!-- /wp:heading -->\n\n<!-- wp:categories /--></div>\n<!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;i:8;a:1:{s:7:\"content\";s:97:\"<!-- wp:list -->\n<ul><li>Link 1</li><li>Link2</li><li>Link 3</li><li></li></ul>\n<!-- /wp:list -->\";}i:9;a:1:{s:7:\"content\";s:92:\"<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p></p></blockquote>\n<!-- /wp:quote -->\";}i:10;a:1:{s:7:\"content\";s:251:\"<!-- wp:image {\"id\":18,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://blog.automedsys.net/wp-content/uploads/2022/06/logo.42c1bf3b.png\" alt=\"\" class=\"wp-image-18\"/></figure>\n<!-- /wp:image -->\";}}','yes'),(104,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:7:\"block-8\";}s:7:\"primary\";a:4:{i:0;s:7:\"block-3\";i:1;s:7:\"block-4\";i:2;s:7:\"block-5\";i:3;s:7:\"block-6\";}s:9:\"secondary\";a:0:{}s:8:\"footer-1\";a:1:{i:0;s:8:\"block-10\";}s:8:\"footer-2\";a:1:{i:0;s:7:\"block-9\";}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:10:\"header-ads\";a:0:{}s:10:\"footer-ads\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:6:{i:1692719636;a:6:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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:1692719657;a:4:{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;}}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;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1692749615;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1692836015;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1692892436;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;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'recovery_keys','a:0:{}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(121,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.3.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.3-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.3\";s:7:\"version\";s:3:\"6.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.3.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.3-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.3\";s:7:\"version\";s:3:\"6.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.2.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.2.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.2.2\";s:7:\"version\";s:5:\"6.2.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.3\";s:7:\"version\";s:5:\"6.1.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.5-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0.5-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.5-rollback-0.zip\";}s:7:\"current\";s:5:\"6.0.5\";s:7:\"version\";s:5:\"6.0.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"6.0\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1692676491;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(129,'theme_mods_twentytwentytwo','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1655338754;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}s:18:\"nav_menu_locations\";a:0:{}}','yes'),(137,'can_compress_scripts','0','no'),(152,'finished_updating_comment_type','1','yes'),(176,'wp_calendar_block_has_published_posts','1','yes'),(221,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(222,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(225,'theme_mods_twentytwentyone','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1655316940;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','yes'),(230,'current_theme','Hueman','yes'),(231,'theme_switched','','yes'),(318,'recently_activated','a:0:{}','yes'),(327,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"19.1\";}','yes'),(328,'wpseo','a:75:{s:8:\"tracking\";b:1;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:1;s:7:\"version\";s:4:\"19.1\";s:16:\"previous_version\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1655338415;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:27:\"https://blog.automedsys.net\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:3:{i:0;s:18:\"siteRepresentation\";i:1;s:14:\"socialProfiles\";i:2;s:19:\"personalPreferences\";}s:36:\"dismiss_configuration_workout_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1655338416;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;}','yes'),(329,'wpseo_titles','a:106:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:71:\"http://blog.automedsys.net/wp-content/uploads/2022/06/logo.42c1bf3b.png\";s:12:\"company_name\";s:10:\"automedsys\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";i:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:18;s:17:\"company_logo_meta\";a:10:{s:5:\"width\";i:525;s:6:\"height\";i:165;s:8:\"filesize\";i:45849;s:3:\"url\";s:71:\"http://blog.automedsys.net/wp-content/uploads/2022/06/logo.42c1bf3b.png\";s:4:\"path\";s:70:\"/var/www/html/blog/public/wp-content/uploads/2022/06/logo.42c1bf3b.png\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:18;s:3:\"alt\";s:0:\"\";s:6:\"pixels\";i:86625;s:4:\"type\";s:9:\"image/png\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(330,'wpseo_social','a:19:{s:13:\"facebook_site\";s:52:\"https://www.facebook.com/Automedsys-106625654366925/\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:10:\"automedsys\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}}','yes'),(362,'wpseo_tracking_last_request','1691214238','yes'),(368,'theme_mods_storefront','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:18;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1660172581;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:4:{i:0;s:7:\"block-3\";i:1;s:7:\"block-4\";i:2;s:7:\"block-5\";i:3;s:7:\"block-6\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:1:{i:0;s:8:\"block-10\";}s:8:\"footer-2\";a:1:{i:0;s:7:\"block-9\";}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(369,'storefront_nux_fresh_site','0','yes'),(377,'storefront_nux_guided_tour','1','yes'),(378,'site_logo','18','yes'),(560,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":5,\"critical\":2}','yes'),(5610,'category_children','a:0:{}','yes'),(10944,'theme_mods_hueman','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:67:\"http://blog.automedsys.net/wp-content/uploads/2022/08/back-blog.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:41;s:3:\"url\";s:67:\"http://blog.automedsys.net/wp-content/uploads/2022/08/back-blog.jpg\";s:13:\"thumbnail_url\";s:67:\"http://blog.automedsys.net/wp-content/uploads/2022/08/back-blog.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:3000;}}','yes'),(10945,'hu_theme_options','a:14:{s:13:\"sidebar-areas\";a:8:{i:0;a:6:{s:2:\"id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:8:\"contexts\";a:1:{i:0;s:5:\"_all_\";}s:9:\"locations\";a:1:{i:0;s:2:\"s1\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:146:\"Full width widget zone. Located in the left sidebar in a 3 columns layout. Can be on the right of a 2 columns sidebar when content is on the left.\";}i:1;a:6:{s:2:\"id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:8:\"contexts\";a:1:{i:0;s:5:\"_all_\";}s:9:\"locations\";a:1:{i:0;s:2:\"s2\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:75:\"Full width widget zone. Located in the right sidebar in a 3 columns layout.\";}i:2;a:6:{s:2:\"id\";s:8:\"footer-1\";s:5:\"title\";s:8:\"Footer 1\";s:8:\"contexts\";a:1:{i:0;s:5:\"_all_\";}s:9:\"locations\";a:1:{i:0;s:8:\"footer-1\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 1\";}i:3;a:6:{s:2:\"id\";s:8:\"footer-2\";s:5:\"title\";s:8:\"Footer 2\";s:8:\"contexts\";a:1:{i:0;s:5:\"_all_\";}s:9:\"locations\";a:1:{i:0;s:8:\"footer-2\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 2\";}i:4;a:6:{s:2:\"id\";s:8:\"footer-3\";s:5:\"title\";s:8:\"Footer 3\";s:8:\"contexts\";a:1:{i:0;s:5:\"_all_\";}s:9:\"locations\";a:1:{i:0;s:8:\"footer-3\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 3\";}i:5;a:6:{s:2:\"id\";s:8:\"footer-4\";s:5:\"title\";s:8:\"Footer 4\";s:8:\"contexts\";a:1:{i:0;s:5:\"_all_\";}s:9:\"locations\";a:1:{i:0;s:8:\"footer-4\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 4\";}i:6;a:6:{s:2:\"id\";s:10:\"header-ads\";s:5:\"title\";s:29:\"Header (next to logo / title)\";s:8:\"contexts\";a:1:{i:0;s:5:\"_all_\";}s:9:\"locations\";a:1:{i:0;s:10:\"header-ads\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:66:\"The Header Widget Zone is located next to your logo or site title.\";}i:7;a:6:{s:2:\"id\";s:10:\"footer-ads\";s:5:\"title\";s:17:\"Footer Full Width\";s:8:\"contexts\";a:1:{i:0;s:5:\"_all_\";}s:9:\"locations\";a:1:{i:0;s:10:\"footer-ads\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:163:\"The Footer Widget Zone is located before the other footer widgets and takes 100% of the width. Very appropriate to display a Google Map or an advertisement banner.\";}}s:15:\"has_been_copied\";b:1;s:8:\"defaults\";a:114:{s:7:\"favicon\";N;s:20:\"display-header-title\";b:1;s:19:\"display-header-logo\";b:0;s:18:\"mobile-header-logo\";N;s:15:\"logo-max-height\";i:60;s:13:\"wrap_in_h_one\";b:1;s:4:\"font\";s:13:\"titillium-web\";s:14:\"body-font-size\";i:16;s:15:\"container-width\";i:1380;s:5:\"boxed\";b:0;s:15:\"sidebar-padding\";s:2:\"30\";s:7:\"color-1\";s:7:\"#16cfc1\";s:7:\"color-2\";s:7:\"#efb93f\";s:15:\"body-background\";a:1:{s:16:\"background-color\";s:7:\"#eaeaea\";}s:19:\"image-border-radius\";i:0;s:16:\"links_underlined\";b:1;s:14:\"ext_link_style\";b:0;s:15:\"ext_link_target\";b:0;s:13:\"post-comments\";b:1;s:13:\"page-comments\";b:0;s:10:\"responsive\";b:1;s:7:\"fittext\";b:0;s:21:\"attachments-in-search\";b:0;s:12:\"social-links\";a:0:{}s:12:\"minified-css\";b:1;s:15:\"structured-data\";b:1;s:14:\"smart_load_img\";b:0;s:16:\"js-mobile-detect\";b:0;s:18:\"defer_front_script\";b:0;s:18:\"defer_font_awesome\";b:0;s:10:\"about-page\";b:1;s:11:\"help-button\";b:1;s:16:\"site-description\";b:1;s:30:\"user-header-bg-color-important\";b:0;s:12:\"color-topbar\";s:7:\"#121d30\";s:12:\"color-header\";s:7:\"#454e5c\";s:17:\"color-header-menu\";s:7:\"#454e5c\";s:17:\"color-mobile-menu\";s:7:\"#454e5c\";s:24:\"transparent-fixed-topnav\";b:1;s:16:\"use-header-image\";b:0;s:21:\"header-img-full-width\";b:1;s:25:\"header-img-natural-height\";b:0;s:20:\"header-img-link-home\";b:1;s:26:\"logo-title-on-header-image\";b:0;s:10:\"header-ads\";b:0;s:18:\"header-ads-desktop\";b:1;s:17:\"header-ads-mobile\";b:0;s:19:\"default-menu-header\";b:0;s:21:\"header-desktop-sticky\";s:8:\"stick_up\";s:14:\"desktop-search\";s:6:\"topbar\";s:25:\"header_mobile_menu_layout\";s:8:\"top_menu\";s:20:\"header-mobile-sticky\";s:8:\"stick_up\";s:17:\"header_mobile_btn\";s:8:\"animated\";s:20:\"mobile-submenu-click\";b:1;s:13:\"mobile-search\";b:1;s:20:\"blog-heading-enabled\";b:1;s:12:\"blog-heading\";s:10:\"autoMedSys\";s:15:\"blog-subheading\";s:4:\"Blog\";s:20:\"blog-restrict-by-cat\";a:0:{}s:13:\"blog-standard\";b:0;s:26:\"blog-standard-full-content\";b:0;s:24:\"blog-standard-show-thumb\";b:1;s:28:\"blog-use-original-image-size\";b:0;s:14:\"excerpt-length\";i:34;s:23:\"archive-title-with-icon\";b:1;s:22:\"featured-posts-enabled\";b:1;s:17:\"featured-category\";s:1:\"0\";s:20:\"featured-posts-count\";i:1;s:27:\"featured-posts-full-content\";b:0;s:18:\"featured-slideshow\";b:0;s:24:\"featured-slideshow-speed\";i:5000;s:22:\"featured-posts-include\";b:0;s:23:\"post-list-meta-category\";b:1;s:19:\"post-list-meta-date\";b:1;s:21:\"post-list-meta-author\";b:0;s:28:\"singular-page-featured-image\";b:0;s:30:\"singular-page-cropped-feat-img\";b:0;s:10:\"author-bio\";b:1;s:28:\"singular-post-featured-image\";b:0;s:30:\"singular-post-cropped-feat-img\";b:0;s:13:\"related-posts\";s:10:\"categories\";s:8:\"post-nav\";s:2:\"s1\";s:9:\"post-tags\";b:1;s:16:\"post-meta-author\";b:1;s:14:\"post-meta-date\";b:1;s:11:\"placeholder\";b:1;s:13:\"comment-count\";b:1;s:13:\"layout-global\";s:7:\"col-3cm\";s:19:\"force-layout-global\";b:0;s:11:\"layout-home\";s:7:\"inherit\";s:13:\"layout-single\";s:7:\"inherit\";s:14:\"layout-archive\";s:7:\"inherit\";s:23:\"layout-archive-category\";s:7:\"inherit\";s:13:\"layout-search\";s:7:\"inherit\";s:10:\"layout-404\";s:7:\"inherit\";s:11:\"layout-page\";s:7:\"inherit\";s:11:\"sidebar-top\";b:1;s:15:\"primary-sb-text\";s:7:\"Follow:\";s:17:\"secondary-sb-text\";s:4:\"More\";s:18:\"sidebar-background\";s:7:\"#f0f0f0\";s:17:\"desktop-sticky-sb\";b:0;s:16:\"mobile-sticky-sb\";b:0;s:19:\"mobile-sidebar-hide\";s:1:\"1\";s:28:\"mobile-sidebar-primary-first\";b:0;s:13:\"sl-in-sidebar\";b:1;s:10:\"footer-ads\";b:0;s:19:\"default-menu-footer\";b:0;s:14:\"footer-widgets\";s:1:\"3\";s:11:\"footer-logo\";N;s:12:\"color-footer\";s:7:\"#33363b\";s:9:\"copyright\";s:52:\"{{site_title}} © {{year}}. All Rights Reserved.\";s:6:\"credit\";b:1;s:12:\"sl-in-footer\";b:1;s:3:\"ver\";s:6:\"3.7.22\";}s:18:\"last_update_notice\";a:2:{s:7:\"version\";s:6:\"3.7.22\";s:13:\"display_count\";i:0;}s:16:\"use-header-image\";b:1;s:15:\"body-background\";a:1:{s:16:\"background-color\";s:7:\"#eaeaea\";}s:19:\"display-header-logo\";b:1;s:12:\"color-topbar\";s:7:\"#4ed6e0\";s:12:\"color-header\";s:22:\"rgba(139,193,174,0.44)\";s:12:\"social-links\";a:3:{i:0;a:3:{s:10:\"is_mod_opt\";b:1;s:9:\"module_id\";s:23:\"social-links_czr_module\";s:11:\"social-size\";s:2:\"14\";}i:1;a:6:{s:2:\"id\";s:19:\"czr_social_module_0\";s:5:\"title\";s:21:\"Follow us on Facebook\";s:11:\"social-icon\";s:11:\"fa-facebook\";s:11:\"social-link\";s:52:\"https://www.facebook.com/Automedsys-106625654366925/\";s:12:\"social-color\";s:13:\"rgb(90,90,90)\";s:13:\"social-target\";i:1;}i:2;a:6:{s:2:\"id\";s:19:\"czr_social_module_1\";s:5:\"title\";s:20:\"Follow us on Twitter\";s:11:\"social-icon\";s:10:\"fa-twitter\";s:11:\"social-link\";s:30:\"https://twitter.com/automedsys\";s:12:\"social-color\";s:13:\"rgb(90,90,90)\";s:13:\"social-target\";i:1;}}s:20:\"header-img-link-home\";b:1;s:26:\"logo-title-on-header-image\";b:1;s:21:\"header-img-full-width\";b:1;s:25:\"header-img-natural-height\";b:1;}','yes'),(10946,'_transient_timeout_started_using_hueman','1975532581','no'),(10947,'_transient_started_using_hueman','with|3.7.22','no'),(10948,'widget_alxtabs','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10949,'widget_alxvideo','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10950,'widget_alxposts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10951,'_transient_timeout__hu_sidebar_backup','2290892581','no'),(10952,'_transient__hu_sidebar_backup','a:0:{}','no'),(10959,'nimble_version','3.3.1','yes'),(10960,'nimble_start_date','2022-08-10 23:05:00','yes'),(10961,'nb_backward_fixes','a:5:{s:20:\"optimize_opts_0321_2\";s:4:\"done\";s:18:\"optimize_opts_0321\";s:4:\"done\";s:23:\"move_in_post_index_0321\";s:4:\"done\";s:27:\"fix_skope_opt_autoload_0321\";s:4:\"done\";s:35:\"clean_section_params_transient_0720\";s:4:\"done\";}','yes'),(10962,'nimble_posts_index','a:0:{}','no'),(10965,'nimble_global_css','','no'),(10968,'nimble_started_with_version','3.3.1','yes'),(11072,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1660179489;}','yes'),(11113,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:3:\"6.3\";s:7:\"current\";s:3:\"6.0\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1692676494;s:5:\"retry\";b:0;}','no'),(11114,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:20:\"ameye@automedsys.com\";s:7:\"version\";s:3:\"6.3\";s:9:\"timestamp\";i:1692676494;}','no'),(341185,'_transient_timeout_nimble_version_check_for_api','1698513199','no'),(341186,'_transient_nimble_version_check_for_api','3.3.1_hueman','no'),(796329,'_site_transient_timeout_php_check_85c832cccbb9a54899f3f398b94e2546','1692892471','no'),(796330,'_site_transient_php_check_85c832cccbb9a54899f3f398b94e2546','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(810818,'_site_transient_timeout_theme_roots','1692678290','no'),(810819,'_site_transient_theme_roots','a:5:{s:6:\"hueman\";s:7:\"/themes\";s:10:\"storefront\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(810821,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1692676493;s:7:\"checked\";a:5:{s:6:\"hueman\";s:6:\"3.7.22\";s:10:\"storefront\";s:5:\"4.1.0\";s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:5:{s:6:\"hueman\";a:6:{s:5:\"theme\";s:6:\"hueman\";s:11:\"new_version\";s:6:\"3.7.24\";s:3:\"url\";s:36:\"https://wordpress.org/themes/hueman/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/hueman.3.7.24.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.3\";}s:10:\"storefront\";a:6:{s:5:\"theme\";s:10:\"storefront\";s:11:\"new_version\";s:5:\"4.5.2\";s:3:\"url\";s:40:\"https://wordpress.org/themes/storefront/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/storefront.4.5.2.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.6.0\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(810822,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1692676494;s:8:\"response\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:33:\"nimble-builder/nimble-builder.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/nimble-builder\";s:4:\"slug\";s:14:\"nimble-builder\";s:6:\"plugin\";s:33:\"nimble-builder/nimble-builder.php\";s:11:\"new_version\";s:5:\"3.3.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/nimble-builder/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/nimble-builder.3.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/nimble-builder/assets/icon.svg?rev=1986014\";s:3:\"svg\";s:59:\"https://ps.w.org/nimble-builder/assets/icon.svg?rev=1986014\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/nimble-builder/assets/banner-1544x500.jpg?rev=1986014\";s:2:\"1x\";s:69:\"https://ps.w.org/nimble-builder/assets/banner-772x250.jpg?rev=1986014\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.0.5\";s:12:\"requires_php\";s:3:\"5.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"20.13\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.13.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.1\";s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:5:\"7.2.5\";}}s:7:\"checked\";a:4:{s:19:\"akismet/akismet.php\";s:5:\"4.2.4\";s:9:\"hello.php\";s:5:\"1.7.2\";s:33:\"nimble-builder/nimble-builder.php\";s:5:\"3.3.1\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"19.1\";}}','no'),(812386,'_transient_timeout_global_styles_hueman','1692719436','no'),(812387,'_transient_global_styles_hueman','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--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 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-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-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-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-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(812388,'_transient_timeout_global_styles_svg_filters_hueman','1692719436','no'),(812389,'_transient_global_styles_svg_filters_hueman','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no');
|
||
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_postmeta`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_postmeta`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_postmeta` (
|
||
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`post_id` bigint unsigned NOT NULL DEFAULT '0',
|
||
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
PRIMARY KEY (`meta_id`),
|
||
KEY `post_id` (`post_id`),
|
||
KEY `meta_key` (`meta_key`(191))
|
||
) ENGINE=InnoDB AUTO_INCREMENT=176 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_postmeta`
|
||
--
|
||
|
||
LOCK TABLES `wp_postmeta` WRITE;
|
||
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
|
||
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_edit_lock','1660179329:1'),(8,5,'_edit_last','1'),(9,5,'_wp_page_template','default'),(12,5,'_wp_old_slug','how-smart-patient-scheduling-impacts-the-bottom-line-%ef%bf%bc'),(13,10,'_edit_lock','1660179014:1'),(20,13,'_edit_lock','1684461032:1'),(23,15,'_edit_lock','1662165915:1'),(26,13,'_edit_last','1'),(27,13,'_wp_page_template','default'),(30,13,'_wp_old_slug','your-practice-data-safety-best-practices-%ef%bf%bc'),(39,18,'_wp_attached_file','2022/06/logo.42c1bf3b.png'),(40,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:525;s:6:\"height\";i:165;s:4:\"file\";s:25:\"2022/06/logo.42c1bf3b.png\";s:8:\"filesize\";i:45849;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:{}}}'),(41,19,'origin','theme'),(42,2,'_edit_lock','1655341297:1'),(43,22,'origin','theme'),(46,2,'_edit_last','1'),(47,2,'_yoast_wpseo_content_score','60'),(48,2,'_yoast_wpseo_estimated-reading-time-minutes','1'),(49,28,'_wp_attached_file','2022/06/test-site-app.jpg'),(50,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2022/06/test-site-app.jpg\";s:8:\"filesize\";i:51818;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:{}}}'),(53,15,'_thumbnail_id','28'),(54,15,'_edit_last','1'),(58,15,'_yoast_wpseo_estimated-reading-time-minutes','2'),(65,18,'_wp_attachment_custom_header_last_used_hueman','1660173005'),(66,18,'_wp_attachment_is_custom_header','hueman'),(72,35,'_wp_attached_file','2022/08/health-security.jpg'),(73,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2022/08/health-security.jpg\";s:8:\"filesize\";i:79907;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:{}}}'),(76,13,'_thumbnail_id','35'),(79,13,'_layout','inherit'),(80,13,'_yoast_wpseo_content_score','60'),(81,13,'_yoast_wpseo_estimated-reading-time-minutes','0'),(86,37,'_wp_attached_file','2022/06/overhead.jpg'),(87,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2022/06/overhead.jpg\";s:8:\"filesize\";i:142937;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:{}}}'),(90,10,'_thumbnail_id','37'),(91,10,'_edit_last','1'),(94,10,'_layout','inherit'),(95,10,'_yoast_wpseo_content_score','90'),(96,10,'_yoast_wpseo_estimated-reading-time-minutes','1'),(97,38,'_wp_attached_file','2022/06/scheduling.jpg'),(98,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2022/06/scheduling.jpg\";s:8:\"filesize\";i:106188;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:{}}}'),(101,5,'_thumbnail_id','38'),(104,5,'_layout','inherit'),(105,5,'_yoast_wpseo_content_score','30'),(106,5,'_yoast_wpseo_estimated-reading-time-minutes','1'),(111,41,'_wp_attached_file','2022/08/back-blog.jpg'),(112,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3000;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2022/08/back-blog.jpg\";s:8:\"filesize\";i:85752;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:{}}}'),(113,41,'_wp_attachment_custom_header_last_used_hueman','1660208486'),(114,41,'_wp_attachment_is_custom_header','hueman'),(121,15,'_layout','inherit'),(138,48,'_wp_attached_file','2022/09/automedsys-icon.png'),(139,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2022/09/automedsys-icon.png\";s:8:\"filesize\";i:82309;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:{}}}'),(143,53,'_edit_lock','1684461092:1'),(144,53,'_edit_last','1'),(145,53,'_layout','inherit'),(146,53,'_yoast_wpseo_content_score','30'),(147,53,'_yoast_wpseo_estimated-reading-time-minutes','2'),(152,56,'_wp_attached_file','2023/05/AI-Automedsys.jpg'),(153,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2023/05/AI-Automedsys.jpg\";s:8:\"filesize\";i:180331;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:{}}}'),(154,56,'_wp_attachment_image_alt','Artificial intelligence'),(157,53,'_thumbnail_id','56'),(160,58,'_edit_lock','1689884064:1'),(163,58,'_edit_last','1'),(166,58,'_layout','inherit'),(167,58,'_yoast_wpseo_content_score','30'),(168,58,'_yoast_wpseo_estimated-reading-time-minutes','3'),(169,60,'_wp_attached_file','2023/07/ai-diagnosis.jpg'),(170,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/07/ai-diagnosis.jpg\";s:8:\"filesize\";i:210619;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:{}}}'),(173,58,'_thumbnail_id','60');
|
||
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_posts`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_posts`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_posts` (
|
||
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`post_author` bigint unsigned NOT NULL DEFAULT '0',
|
||
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
|
||
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
|
||
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
|
||
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`post_parent` bigint unsigned NOT NULL DEFAULT '0',
|
||
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`menu_order` int NOT NULL DEFAULT '0',
|
||
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
|
||
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`comment_count` bigint NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`ID`),
|
||
KEY `post_name` (`post_name`(191)),
|
||
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
|
||
KEY `post_parent` (`post_parent`),
|
||
KEY `post_author` (`post_author`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_posts`
|
||
--
|
||
|
||
LOCK TABLES `wp_posts` WRITE;
|
||
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
|
||
INSERT INTO `wp_posts` VALUES (2,1,'2022-06-15 15:53:56','2022-06-15 15:53:56','<!-- wp:paragraph -->\n<p>We develop state of the art technology to drive workflow optimization, analytics, information security, and enhanced user experience. Our innovation is driven by a multidisciplinary team with medicine, information technology, and engineering expertise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We develop patient-centered care and clinician-centric solutions to ensure patients and healthcare providers thrive. Our goal is to enhance healthcare delivery and the achievement of the quadruple aim in healthcare which is better outcomes, lower costs, improved patient experience, and improved clinician experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p></p></blockquote>\n<!-- /wp:quote -->','autoMedSys','','publish','closed','open','','sample-page','','','2022-06-16 01:01:37','2022-06-16 01:01:37','',0,'http://blog.automedsys.net/?page_id=2',0,'page','',0),(3,1,'2022-06-15 15:53:56','2022-06-15 15:53:56','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://blog.automedsys.net.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</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 --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 visit our login page, 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 "Remember Me", 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 --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-06-15 15:53:56','2022-06-15 15:53:56','',0,'http://blog.automedsys.net/?page_id=3',0,'page','',0),(5,1,'2022-06-15 17:29:23','2022-06-15 17:29:23','<!-- wp:paragraph -->\n<p>Patient scheduling is critical for operational efficiency, reducing missed visits, planned provider\'s time, and ensuring that patients are seen in a timely manner. There are several key features that you should look for when analyzing the quality of a patient scheduling module.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Beyond the primary care need for a patient appointment, practices must be mindful of how data collected from inception affects claims and payment at the end of the care when they sign off.</p>\n<!-- /wp:paragraph -->','How Smart Patient Scheduling Impacts the Bottom line.','','publish','closed','closed','','how-smart-patient-scheduling-impacts-the-bottom-line','','','2022-08-11 00:54:48','2022-08-11 00:54:48','',0,'http://blog.automedsys.net/?p=5',0,'post','',0),(6,1,'2022-06-15 17:26:48','2022-06-15 17:26:48','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentytwo','','','2022-06-15 17:26:48','2022-06-15 17:26:48','',0,'http://blog.automedsys.net/index.php/2022/06/15/wp-global-styles-twentytwentytwo/',0,'wp_global_styles','',0),(7,1,'2022-06-15 17:29:23','2022-06-15 17:29:23','<!-- wp:paragraph -->\n<p><strong>How Smart Patient Scheduling Impacts the Bottom line.</strong></p>\n<!-- /wp:paragraph -->','How Smart Patient Scheduling Impacts the Bottom line.','','inherit','closed','closed','','5-revision-v1','','','2022-06-15 17:29:23','2022-06-15 17:29:23','',5,'http://blog.automedsys.net/?p=7',0,'revision','',0),(8,1,'2022-06-15 17:30:02','2022-06-15 17:30:02','<!-- wp:paragraph -->\n<p>Patient scheduling is critical for operational efficiency, reducing missed visits, planned provider\'s time, and ensuring that patients are seen in a timely manner. There are several key features that you should look for when analyzing the quality of a patient scheduling module.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Beyond the primary care need for a patient appointment, practices must be mindful of how data collected from inception affects claims and payment at the end of the care when they sign off.</p>\n<!-- /wp:paragraph -->','How Smart Patient Scheduling Impacts the Bottom line.','','inherit','closed','closed','','5-revision-v1','','','2022-06-15 17:30:02','2022-06-15 17:30:02','',5,'http://blog.automedsys.net/?p=8',0,'revision','',0),(9,1,'2022-06-15 17:31:00','2022-06-15 17:31:00','<!-- wp:paragraph -->\n<p>Patient scheduling is critical for operational efficiency, reducing missed visits, planned provider\'s time, and ensuring that patients are seen in a timely manner. There are several key features that you should look for when analyzing the quality of a patient scheduling module.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Beyond the primary care need for a patient appointment, practices must be mindful of how data collected from inception affects claims and payment at the end of the care when they sign off.</p>\n<!-- /wp:paragraph -->','How Smart Patient Scheduling Impacts the Bottom line.','','inherit','closed','closed','','5-revision-v1','','','2022-06-15 17:31:00','2022-06-15 17:31:00','',5,'http://blog.automedsys.net/?p=9',0,'revision','',0),(10,1,'2022-06-15 17:56:20','2022-06-15 17:56:20','<!-- wp:paragraph -->\n<p><strong>Low Overhead versus \"Over your Head\" Patient Charting.</strong></p>\n<!-- /wp:paragraph -->','Low Overhead versus \"Over your Head\" Patient Charting.','','publish','closed','closed','','low-overhead-versus-over-your-head-patient-charting','','','2022-08-11 00:50:14','2022-08-11 00:50:14','',0,'http://blog.automedsys.net/?p=10',0,'post','',0),(11,1,'2022-06-15 17:56:20','2022-06-15 17:56:20','<!-- wp:paragraph -->\n<p><strong>Low Overhead versus \"Over your Head\" Patient Charting.</strong></p>\n<!-- /wp:paragraph -->','Low Overhead versus \"Over your Head\" Patient Charting.','','inherit','closed','closed','','10-revision-v1','','','2022-06-15 17:56:20','2022-06-15 17:56:20','',10,'http://blog.automedsys.net/?p=11',0,'revision','',0),(13,1,'2022-06-15 17:56:53','2022-06-15 17:56:53','','Your Practice Data Safety Best Practices.','','publish','closed','closed','','your-practice-data-safety-best-practices','','','2022-08-11 00:18:20','2022-08-11 00:18:20','',0,'http://blog.automedsys.net/?p=13',0,'post','',0),(14,1,'2022-06-15 17:56:53','2022-06-15 17:56:53','','Your Practice Data Safety Best Practices.','','inherit','closed','closed','','13-revision-v1','','','2022-06-15 17:56:53','2022-06-15 17:56:53','',13,'http://blog.automedsys.net/?p=14',0,'revision','',0),(15,1,'2022-06-15 17:57:28','2022-06-15 17:57:28','<!-- wp:paragraph -->\n<p>Your health care practice is also a financial expenditure and every turn of action performed affects your bottom line. You and your team are under continuous pressure makes practice efficient and more valuable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The good news is that every practice can be improved. Sometimes the team expends energy on activities that have little or no value. You may be able to perform some activities more efficiently, allocate work better and eliminate redundancies. Here are several ways, both large and small, that you might go about improving things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>More physician time on patient care:</strong> To maximize their value to the practice, physicians and other providers should spend at least 90 percent of their weekly work hours on direct patient care. While in a group practice, there are better opportunities for the distribution of efforts, solo physicians can distribute efforts too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Smart scheduling system:</strong> sometimes relegated to part of daily practice activities, scheduling has an enormous impact on the productivity and efficiency of your practice. It is especially important for solo practices that are growing to have a good scheduling system. This will increase patient flow per day, which is a net income for the practice.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Understand Patient Insurance:</strong> Have clarity on patient insurance benefits related to your credentialing. Collect co-pay at patient arrival. Essential to know that under most managed care contracts, collecting the co-pay is obligatory. And co-pays are a vital source of income for a practice. </p>\n<!-- /wp:paragraph -->','Running the Practice or Running Around the Practice.','','publish','closed','closed','','running-the-practice-or-running-around-the-practice','','','2022-09-03 00:45:15','2022-09-03 00:45:15','',0,'http://blog.automedsys.net/?p=15',0,'post','',0),(16,1,'2022-06-15 17:57:28','2022-06-15 17:57:28','<!-- wp:paragraph -->\n<p><strong>Running the Practice or Running Around the Practice.</strong></p>\n<!-- /wp:paragraph -->','Running the Practice or Running Around the Practice.','','inherit','closed','closed','','15-revision-v1','','','2022-06-15 17:57:28','2022-06-15 17:57:28','',15,'http://blog.automedsys.net/?p=16',0,'revision','',0),(17,1,'2022-06-15 17:58:22','2022-06-15 17:58:22','','Your Practice Data Safety Best Practices.','','inherit','closed','closed','','13-revision-v1','','','2022-06-15 17:58:22','2022-06-15 17:58:22','',13,'http://blog.automedsys.net/?p=17',0,'revision','',0),(18,1,'2022-06-15 18:06:24','2022-06-15 18:06:24','','logo.42c1bf3b','','inherit','open','closed','','logo-42c1bf3b','','','2022-06-15 18:06:24','2022-06-15 18:06:24','',0,'http://blog.automedsys.net/wp-content/uploads/2022/06/logo.42c1bf3b.png',0,'attachment','image/png',0),(19,1,'2022-06-15 18:06:56','2022-06-15 18:06:56','<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"http://blog.automedsys.net/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg\",\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.58\",\"y\":\"0.58\"},\"minHeight\":400,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dspacing\\u002d\\u002dsmall, 1.25rem)\",\"bottom\":\"var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dspacing\\u002d\\u002dlarge, 8rem)\"}},\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--custom--spacing--small, 1.25rem);padding-bottom:var(--wp--custom--spacing--large, 8rem);min-height:400px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"Illustration of a flying bird\" src=\"http://blog.automedsys.net/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg\" style=\"object-position:58% 58%\" data-object-fit=\"cover\" data-object-position=\"58% 58%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0rem\",\"top\":\"0px\",\"right\":\"0px\",\"left\":\"0px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|foreground\"}}}},\"textColor\":\"foreground\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide has-foreground-color has-text-color has-link-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0rem;padding-left:0px\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} -->\n<!-- wp:page-list /-->\n<!-- /wp:navigation --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->','Header','','publish','closed','closed','','header','','','2022-06-15 18:11:03','2022-06-15 18:11:03','',0,'http://blog.automedsys.net/index.php/2022/06/15/header/',0,'wp_template_part','',0),(20,1,'2022-06-15 18:08:37','2022-06-15 18:08:37','<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"http://blog.automedsys.net/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg\",\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.58\",\"y\":\"0.58\"},\"minHeight\":400,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dspacing\\u002d\\u002dsmall, 1.25rem)\",\"bottom\":\"var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dspacing\\u002d\\u002dlarge, 8rem)\"}},\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--custom--spacing--small, 1.25rem);padding-bottom:var(--wp--custom--spacing--large, 8rem);min-height:400px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"Illustration of a flying bird\" src=\"http://blog.automedsys.net/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg\" style=\"object-position:58% 58%\" data-object-fit=\"cover\" data-object-position=\"58% 58%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0rem\",\"top\":\"0px\",\"right\":\"0px\",\"left\":\"0px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|foreground\"}}}},\"textColor\":\"foreground\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide has-foreground-color has-text-color has-link-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0rem;padding-left:0px\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} -->\n<!-- wp:page-list /-->\n<!-- /wp:navigation --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"500px\"} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->','Header','','inherit','closed','closed','','19-revision-v1','','','2022-06-15 18:08:37','2022-06-15 18:08:37','',19,'http://blog.automedsys.net/?p=20',0,'revision','',0),(21,1,'2022-06-15 18:10:03','2022-06-15 18:10:03','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://blog.automedsys.net/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','autoMedSys','','inherit','closed','closed','','2-revision-v1','','','2022-06-15 18:10:03','2022-06-15 18:10:03','',2,'http://blog.automedsys.net/?p=21',0,'revision','',0),(22,1,'2022-06-15 18:11:03','2022-06-15 18:11:03','<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"0px\"}}},\"backgroundColor\":\"foreground\",\"textColor\":\"background\",\"layout\":{\"inherit\":true}} -->\n<div class=\"wp-block-group alignfull has-background-color has-foreground-background-color has-text-color has-background has-link-color\" style=\"padding-top:0px;padding-bottom:0px\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentytwo\",\"tagName\":\"header\",\"align\":\"wide\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"66px\"} -->\n<div style=\"height:66px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->','Header (Dark, small)','','publish','closed','closed','','header-small-dark','','','2022-06-15 18:11:03','2022-06-15 18:11:03','',0,'http://blog.automedsys.net/index.php/2022/06/15/header-small-dark/',0,'wp_template_part','',0),(23,1,'2022-06-15 18:11:03','2022-06-15 18:11:03','<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"http://blog.automedsys.net/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg\",\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.58\",\"y\":\"0.58\"},\"minHeight\":400,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dspacing\\u002d\\u002dsmall, 1.25rem)\",\"bottom\":\"var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dspacing\\u002d\\u002dlarge, 8rem)\"}},\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--custom--spacing--small, 1.25rem);padding-bottom:var(--wp--custom--spacing--large, 8rem);min-height:400px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"Illustration of a flying bird\" src=\"http://blog.automedsys.net/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg\" style=\"object-position:58% 58%\" data-object-fit=\"cover\" data-object-position=\"58% 58%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0rem\",\"top\":\"0px\",\"right\":\"0px\",\"left\":\"0px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|foreground\"}}}},\"textColor\":\"foreground\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide has-foreground-color has-text-color has-link-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0rem;padding-left:0px\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} -->\n<!-- wp:page-list /-->\n<!-- /wp:navigation --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->','Header','','inherit','closed','closed','','19-revision-v1','','','2022-06-15 18:11:03','2022-06-15 18:11:03','',19,'http://blog.automedsys.net/?p=23',0,'revision','',0),(25,1,'2022-06-16 00:20:46','2022-06-16 00:20:46','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-storefront','','','2022-06-16 00:20:46','2022-06-16 00:20:46','',0,'http://blog.automedsys.net/index.php/2022/06/16/wp-global-styles-storefront/',0,'wp_global_styles','',0),(27,1,'2022-06-16 00:21:53','2022-06-16 00:21:53','<!-- wp:paragraph -->\n<p>We develop state of the art technology to drive workflow optimization, analytics, information security, and enhanced user experience. Our innovation is driven by a multidisciplinary team with medicine, information technology, and engineering expertise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We develop patient-centered care and clinician-centric solutions to ensure patients and healthcare providers thrive. Our goal is to enhance healthcare delivery and the achievement of the quadruple aim in healthcare which is better outcomes, lower costs, improved patient experience, and improved clinician experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p></p></blockquote>\n<!-- /wp:quote -->','autoMedSys','','inherit','closed','closed','','2-revision-v1','','','2022-06-16 00:21:53','2022-06-16 00:21:53','',2,'http://blog.automedsys.net/?p=27',0,'revision','',0),(28,1,'2022-06-16 01:02:54','2022-06-16 01:02:54','','test-site-app','','inherit','open','closed','','test-site-app','','','2022-06-16 01:02:54','2022-06-16 01:02:54','',15,'http://blog.automedsys.net/wp-content/uploads/2022/06/test-site-app.jpg',0,'attachment','image/jpeg',0),(35,1,'2022-08-11 00:17:44','2022-08-11 00:17:44','','health-security','','inherit','open','closed','','health-security','','','2022-08-11 00:17:44','2022-08-11 00:17:44','',0,'http://blog.automedsys.net/wp-content/uploads/2022/08/health-security.jpg',0,'attachment','image/jpeg',0),(36,1,'2022-08-11 00:18:06','2022-08-11 00:18:06','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-hueman','','','2022-08-11 00:18:06','2022-08-11 00:18:06','',0,'http://blog.automedsys.net/index.php/2022/08/11/wp-global-styles-hueman/',0,'wp_global_styles','',0),(37,1,'2022-08-11 00:50:09','2022-08-11 00:50:09','','overhead','','inherit','open','closed','','overhead','','','2022-08-11 00:50:09','2022-08-11 00:50:09','',10,'http://blog.automedsys.net/wp-content/uploads/2022/06/overhead.jpg',0,'attachment','image/jpeg',0),(38,1,'2022-08-11 00:54:41','2022-08-11 00:54:41','','scheduling','','inherit','open','closed','','scheduling','','','2022-08-11 00:54:41','2022-08-11 00:54:41','',5,'http://blog.automedsys.net/wp-content/uploads/2022/06/scheduling.jpg',0,'attachment','image/jpeg',0),(41,1,'2022-08-11 08:59:51','2022-08-11 08:59:51','','back-blog','','inherit','open','closed','','back-blog','','','2022-08-11 08:59:51','2022-08-11 08:59:51','',0,'http://blog.automedsys.net/wp-content/uploads/2022/08/back-blog.jpg',0,'attachment','image/jpeg',0),(44,1,'2022-08-26 00:37:12','2022-08-26 00:37:12','<!-- wp:paragraph -->\n<p>Your health care practice is also a financial expenditure and every turn of action performed affects your bottom line. You and your team are under continuous pressure makes practice efficient and more valuable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The good news is that every practice can be improved. Sometimes the team expends energy on activities that have little or no value. You may be able to perform some activities more efficiently, allocate work better and eliminate redundancies. Here are several ways, both large and small, that you might go about improving things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>More physician time on patient care:</strong> To maximize their value to the practice, physicians and other providers should spend at least 90 percent of their weekly work hours on direct patient care. While in a group practice, there are better opportunities for the distribution of efforts, solo physicians can distribute efforts too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Running the Practice or Running Around the Practice.','','inherit','closed','closed','','15-revision-v1','','','2022-08-26 00:37:12','2022-08-26 00:37:12','',15,'http://blog.automedsys.net/?p=44',0,'revision','',0),(45,1,'2022-08-26 00:44:04','2022-08-26 00:44:04','<!-- wp:paragraph -->\n<p>Your health care practice is also a financial expenditure and every turn of action performed affects your bottom line. You and your team are under continuous pressure makes practice efficient and more valuable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The good news is that every practice can be improved. Sometimes the team expends energy on activities that have little or no value. You may be able to perform some activities more efficiently, allocate work better and eliminate redundancies. Here are several ways, both large and small, that you might go about improving things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>More physician time on patient care:</strong> To maximize their value to the practice, physicians and other providers should spend at least 90 percent of their weekly work hours on direct patient care. While in a group practice, there are better opportunities for the distribution of efforts, solo physicians can distribute efforts too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Smart scheduling system:</strong> sometimes relegated to part of daily practice activities, scheduling has an enormous impact on the productivity and efficiency of your practice. It is especially important for solo practices that are growing to have a good scheduling system. This will increase patient flow per day, which is a net income for the practice.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Running the Practice or Running Around the Practice.','','inherit','closed','closed','','15-revision-v1','','','2022-08-26 00:44:04','2022-08-26 00:44:04','',15,'http://blog.automedsys.net/?p=45',0,'revision','',0),(46,1,'2022-08-26 00:50:00','2022-08-26 00:50:00','<!-- wp:paragraph -->\n<p>Your health care practice is also a financial expenditure and every turn of action performed affects your bottom line. You and your team are under continuous pressure makes practice efficient and more valuable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The good news is that every practice can be improved. Sometimes the team expends energy on activities that have little or no value. You may be able to perform some activities more efficiently, allocate work better and eliminate redundancies. Here are several ways, both large and small, that you might go about improving things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>More physician time on patient care:</strong> To maximize their value to the practice, physicians and other providers should spend at least 90 percent of their weekly work hours on direct patient care. While in a group practice, there are better opportunities for the distribution of efforts, solo physicians can distribute efforts too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Smart scheduling system:</strong> sometimes relegated to part of daily practice activities, scheduling has an enormous impact on the productivity and efficiency of your practice. It is especially important for solo practices that are growing to have a good scheduling system. This will increase patient flow per day, which is a net income for the practice.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Understand Patient Insurance:</strong> Have clarity on patient insurance benefits related to your credentialing. Collect co-pay at patient arrival. Essential to know that under most managed care contracts, collecting the co-pay is obligatory. And co-pays are a vital source of income for a practice. </p>\n<!-- /wp:paragraph -->','Running the Practice or Running Around the Practice.','','inherit','closed','closed','','15-revision-v1','','','2022-08-26 00:50:00','2022-08-26 00:50:00','',15,'http://blog.automedsys.net/?p=46',0,'revision','',0),(48,1,'2022-09-04 16:15:11','2022-09-04 16:15:11','','automedsys-icon','','inherit','open','closed','','automedsys-icon','','','2022-09-04 16:15:11','2022-09-04 16:15:11','',0,'http://blog.automedsys.net/wp-content/uploads/2022/09/automedsys-icon.png',0,'attachment','image/png',0),(53,1,'2023-05-19 01:39:23','2023-05-19 01:39:23','<!-- wp:paragraph -->\n<p>Artificial intelligence (AI) in healthcare has been revolutionary, reshaping how we diagnose, treat, and monitor patients. AI technology drastically improves healthcare research and outcomes by producing more insight and accurate diagnoses, thus providing personalized treatments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI in healthcare\'s ability to quickly analyze large amounts of clinical documentation and helps medical practitioners identify disease markers and trends that someone would otherwise be missed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The potential applications of AI and healthcare are broad and far-reaching, from scanning radiological images for early detection to predicting outcomes from electronic health records.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By leveraging artificial intelligence in healthcare practices, healthcare systems can become more intelligent, faster, and more efficient in providing care to a diverse population. As a result, artificial intelligence in healthcare transforms how patients receive quality care while mitigating provider costs and improving health outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the core of AI, Machine Learning has altered the healthcare system by enabling systems to learn and assist in diagnosing and treating patients. Machine learning algorithms can quickly process large amounts of clinical data in different scenarios, identify patterns, and make predictions about medical outcomes more accurately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another component of AI usage is Natural language processing (NLP). NLP is an artificial intelligence application that enables computers to process human language. This piece of technology has reshaped the healthcare industry. In healthcare, NLP is applied in a wide range of health data processing, such as improving patient care through streamlining clinical processes and providing more focused services.</p>\n<!-- /wp:paragraph -->','Artificial Intelligence in your Practice','','publish','open','open','','artificial-intelligence-in-your-practice','','','2023-05-19 01:51:32','2023-05-19 01:51:32','',0,'https://blog.automedsys.net/?p=53',0,'post','',0),(54,1,'2023-05-19 01:37:39','2023-05-19 01:37:39','<!-- wp:paragraph -->\n<p>Artificial intelligence (AI) in healthcare has been revolutionary, reshaping how we diagnose, treat, and monitor patients. AI technology drastically improves healthcare research and outcomes by producing more insight and accurate diagnoses, thus providing personalized treatments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI in healthcare\'s ability to quickly analyze large amounts of clinical documentation and helps medical practitioners identify disease markers and trends that someone would otherwise be missed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The potential applications of AI and healthcare are broad and far-reaching, from scanning radiological images for early detection to predicting outcomes from electronic health records.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By leveraging artificial intelligence in healthcare practices, healthcare systems can become more intelligent, faster, and more efficient in providing care to a diverse population. As a result, artificial intelligence in healthcare transforms how patients receive quality care while mitigating provider costs and improving health outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the core of AI, Machine Learning has altered the healthcare system by enabling systems to learn and assist in diagnosing and treating patients. Machine learning algorithms can quickly process large amounts of clinical data in different scenarios, identify patterns, and make predictions about medical outcomes more accurately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another component of AI usage is Natural language processing (NLP). NLP is an artificial intelligence application that enables computers to process human language. This piece of technology has reshaped the healthcare industry. In healthcare, NLP is applied in a wide range of health data processing, such as improving patient care through streamlining clinical processes and providing more focused services.</p>\n<!-- /wp:paragraph -->','AI In Your Practice','','inherit','closed','closed','','53-revision-v1','','','2023-05-19 01:37:39','2023-05-19 01:37:39','',53,'https://blog.automedsys.net/?p=54',0,'revision','',0),(55,1,'2023-05-19 01:39:23','2023-05-19 01:39:23','<!-- wp:paragraph -->\n<p>Artificial intelligence (AI) in healthcare has been revolutionary, reshaping how we diagnose, treat, and monitor patients. AI technology drastically improves healthcare research and outcomes by producing more insight and accurate diagnoses, thus providing personalized treatments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI in healthcare\'s ability to quickly analyze large amounts of clinical documentation and helps medical practitioners identify disease markers and trends that someone would otherwise be missed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The potential applications of AI and healthcare are broad and far-reaching, from scanning radiological images for early detection to predicting outcomes from electronic health records.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By leveraging artificial intelligence in healthcare practices, healthcare systems can become more intelligent, faster, and more efficient in providing care to a diverse population. As a result, artificial intelligence in healthcare transforms how patients receive quality care while mitigating provider costs and improving health outcomes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the core of AI, Machine Learning has altered the healthcare system by enabling systems to learn and assist in diagnosing and treating patients. Machine learning algorithms can quickly process large amounts of clinical data in different scenarios, identify patterns, and make predictions about medical outcomes more accurately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another component of AI usage is Natural language processing (NLP). NLP is an artificial intelligence application that enables computers to process human language. This piece of technology has reshaped the healthcare industry. In healthcare, NLP is applied in a wide range of health data processing, such as improving patient care through streamlining clinical processes and providing more focused services.</p>\n<!-- /wp:paragraph -->','Artificial Intelligence in your Practice','','inherit','closed','closed','','53-revision-v1','','','2023-05-19 01:39:23','2023-05-19 01:39:23','',53,'https://blog.automedsys.net/?p=55',0,'revision','',0),(56,1,'2023-05-19 01:51:06','2023-05-19 01:51:06','Artificial intelligence','AI-Automedsys','Artificial intelligence','inherit','open','closed','','ai-automedsys','','','2023-05-19 01:51:28','2023-05-19 01:51:28','',53,'http://blog.automedsys.net/wp-content/uploads/2023/05/AI-Automedsys.jpg',0,'attachment','image/jpeg',0),(58,1,'2023-07-20 17:14:24','2023-07-20 17:14:24','<!-- wp:paragraph -->\n<p>Artificial intelligence (AI) is being used more and more regularly, particularly in diagnosis and treatment planning. AI and machine learning have become effective diagnostic tools in recent years. By offering more accurate diagnoses, this technology is changing healthcare . Artificial intelligence facilitates healthcare management, automation, administration, and workflows in medical diagnostics. AI in medical diagnostics has demonstrated tremendous potential over the past several years in altering healthcare standards while easing medical services’ intense pressures.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI medical diagnosis refers to the application of artificial intelligence (AI) and machine learning principles in medicine to aid in diagnosing diseases and medical conditions. It involves using algorithms to analyze patient data, such as medical images, lab results, electronic health records, and other clinical data, to assist healthcare professionals in making accurate and timely diagnoses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Electronic health records (EHRs), imaging technology, genetic data, and portable sensor data are just a few of the types of medical data being collected at a new level today. These numerous data may be processed and analyzed by AI algorithms, which can yield insightful information to help with medical diagnosis. AI algorithms can produce estimates and concepts by reviewing a patient’s medical history, symptoms, testing results, and other relevant data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI algorithms for medical diagnosis rely extensively on Machine Learning (ML) processes. Large datasets with tagged samples can be used to train ML systems to uncover relationships and trends. Deep Learning (DL) algorithms have transformed medical imaging analysis by improving tumor identification, categorization, and classification efficiency.<br>DL algorithms can also combine other data types, including textual data, medical imaging, and genetic information to provide a more meticulous analysis. The accuracy of the diagnosis is improved, and this comprehensive approach makes a more profound comprehension of complicated conditions possible. The AI algorithms may offer a comprehensive view of an individual’s health by considering multiple factors simultaneously. Hence, resulting in more precise diagnoses and individualized treatment strategies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI algorithms have shown outstanding skills in processing medical images. It allows healthcare workers to acquire accurate and in-depth conclusions based on these diagnostic scans. AI can process X-ray images, MRIs, and CT scans in a fraction of the time, which helps specialists spot patterns more quckly and retrieve relevant data. AI has demonstrated outstanding proficiency in identifying and locating tumors, anomalies, and other medical problems using medical images. The AI algorithms can effectively analyze extensive collections of medical images to identify and classify tumors in the case of cancer. AI medical diagnosis systems can offer oncologists insightful information about the tumor’s stage, rate of growth, and potential for metastasis by comparing these outcomes with prior data, enabling personalized treatment plans.<br>The Potential For AI To Improve Diagnostic Accuracy And Efficiency<br>The application of AI to medical imaging has enormous potential to improve the efficiency and accuracy of diagnosis. AI medical diagnosis systems can help radiologists by offering different viewpoints, decreasing the possibility of misinterpretation, and boosting overall diagnostic accuracy. It can also speed up image analysis, enabling faster responses and more effective medical care.</p>\n<!-- /wp:paragraph -->','Artificial Intelligence in Medical Diagnosis','','publish','open','open','','artificial-intelligence-in-medical-diagnosis','','','2023-07-20 17:31:31','2023-07-20 17:31:31','',0,'https://blog.automedsys.net/?p=58',0,'post','',0),(59,1,'2023-07-20 17:14:24','2023-07-20 17:14:24','<!-- wp:paragraph -->\n<p>Artificial intelligence (AI) is being used more and more regularly, particularly in diagnosis and treatment planning. AI and machine learning have become effective diagnostic tools in recent years. By offering more accurate diagnoses, this technology is changing healthcare . Artificial intelligence facilitates healthcare management, automation, administration, and workflows in medical diagnostics. AI in medical diagnostics has demonstrated tremendous potential over the past several years in altering healthcare standards while easing medical services’ intense pressures.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI medical diagnosis refers to the application of artificial intelligence (AI) and machine learning principles in medicine to aid in diagnosing diseases and medical conditions. It involves using algorithms to analyze patient data, such as medical images, lab results, electronic health records, and other clinical data, to assist healthcare professionals in making accurate and timely diagnoses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Electronic health records (EHRs), imaging technology, genetic data, and portable sensor data are just a few of the types of medical data being collected at a new level today. These numerous data may be processed and analyzed by AI algorithms, which can yield insightful information to help with medical diagnosis. AI algorithms can produce estimates and concepts by reviewing a patient’s medical history, symptoms, testing results, and other relevant data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI algorithms for medical diagnosis rely extensively on Machine Learning (ML) processes. Large datasets with tagged samples can be used to train ML systems to uncover relationships and trends. Deep Learning (DL) algorithms have transformed medical imaging analysis by improving tumor identification, categorization, and classification efficiency.<br>DL algorithms can also combine other data types, including textual data, medical imaging, and genetic information to provide a more meticulous analysis. The accuracy of the diagnosis is improved, and this comprehensive approach makes a more profound comprehension of complicated conditions possible. The AI algorithms may offer a comprehensive view of an individual’s health by considering multiple factors simultaneously. Hence, resulting in more precise diagnoses and individualized treatment strategies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>AI algorithms have shown outstanding skills in processing medical images. It allows healthcare workers to acquire accurate and in-depth conclusions based on these diagnostic scans. AI can process X-ray images, MRIs, and CT scans in a fraction of the time, which helps specialists spot patterns more quckly and retrieve relevant data. AI has demonstrated outstanding proficiency in identifying and locating tumors, anomalies, and other medical problems using medical images. The AI algorithms can effectively analyze extensive collections of medical images to identify and classify tumors in the case of cancer. AI medical diagnosis systems can offer oncologists insightful information about the tumor’s stage, rate of growth, and potential for metastasis by comparing these outcomes with prior data, enabling personalized treatment plans.<br>The Potential For AI To Improve Diagnostic Accuracy And Efficiency<br>The application of AI to medical imaging has enormous potential to improve the efficiency and accuracy of diagnosis. AI medical diagnosis systems can help radiologists by offering different viewpoints, decreasing the possibility of misinterpretation, and boosting overall diagnostic accuracy. It can also speed up image analysis, enabling faster responses and more effective medical care.</p>\n<!-- /wp:paragraph -->','Artificial Intelligence in Medical Diagnosis','','inherit','closed','closed','','58-revision-v1','','','2023-07-20 17:14:24','2023-07-20 17:14:24','',58,'https://blog.automedsys.net/?p=59',0,'revision','',0),(60,1,'2023-07-20 17:31:13','2023-07-20 17:31:13','','ai-diagnosis','','inherit','open','closed','','ai-diagnosis','','','2023-07-20 17:31:13','2023-07-20 17:31:13','',0,'http://blog.automedsys.net/wp-content/uploads/2023/07/ai-diagnosis.jpg',0,'attachment','image/jpeg',0);
|
||
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_term_relationships`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_term_relationships`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_term_relationships` (
|
||
`object_id` bigint unsigned NOT NULL DEFAULT '0',
|
||
`term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
|
||
`term_order` int NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
|
||
KEY `term_taxonomy_id` (`term_taxonomy_id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_term_relationships`
|
||
--
|
||
|
||
LOCK TABLES `wp_term_relationships` WRITE;
|
||
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
|
||
INSERT INTO `wp_term_relationships` VALUES (5,1,0),(6,2,0),(10,1,0),(13,1,0),(15,1,0),(19,2,0),(19,3,0),(22,2,0),(22,3,0),(25,4,0),(36,5,0),(53,1,0),(58,1,0);
|
||
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_term_taxonomy`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_term_taxonomy`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_term_taxonomy` (
|
||
`term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`term_id` bigint unsigned NOT NULL DEFAULT '0',
|
||
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`parent` bigint unsigned NOT NULL DEFAULT '0',
|
||
`count` bigint NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`term_taxonomy_id`),
|
||
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
|
||
KEY `taxonomy` (`taxonomy`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_term_taxonomy`
|
||
--
|
||
|
||
LOCK TABLES `wp_term_taxonomy` WRITE;
|
||
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
|
||
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,6),(2,2,'wp_theme','',0,3),(3,3,'wp_template_part_area','',0,2),(4,4,'wp_theme','',0,1),(5,5,'wp_theme','',0,1);
|
||
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_termmeta`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_termmeta`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_termmeta` (
|
||
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`term_id` bigint unsigned NOT NULL DEFAULT '0',
|
||
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
PRIMARY KEY (`meta_id`),
|
||
KEY `term_id` (`term_id`),
|
||
KEY `meta_key` (`meta_key`(191))
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_termmeta`
|
||
--
|
||
|
||
LOCK TABLES `wp_termmeta` WRITE;
|
||
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_terms`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_terms`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_terms` (
|
||
`term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`term_group` bigint NOT NULL DEFAULT '0',
|
||
PRIMARY KEY (`term_id`),
|
||
KEY `slug` (`slug`(191)),
|
||
KEY `name` (`name`(191))
|
||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_terms`
|
||
--
|
||
|
||
LOCK TABLES `wp_terms` WRITE;
|
||
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
|
||
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentytwo','twentytwentytwo',0),(3,'header','header',0),(4,'storefront','storefront',0),(5,'hueman','hueman',0);
|
||
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_usermeta`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_usermeta`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_usermeta` (
|
||
`umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`user_id` bigint unsigned NOT NULL DEFAULT '0',
|
||
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
PRIMARY KEY (`umeta_id`),
|
||
KEY `user_id` (`user_id`),
|
||
KEY `meta_key` (`meta_key`(191))
|
||
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_usermeta`
|
||
--
|
||
|
||
LOCK TABLES `wp_usermeta` WRITE;
|
||
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
|
||
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','automedsys'),(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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','1'),(17,1,'wp_dashboard_quick_press_last_post_id','57'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"174.249.179.0\";}'),(19,1,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:339:\"<p>We see that you enabled automatic updates for WordPress. We recommend that you do this for Yoast SEO as well. This way we can guarantee that WordPress and Yoast SEO will continue to run smoothly together. <a href=\"http://blog.automedsys.net/wp-admin/plugins.php\">Go to your plugins overview to enable auto-updates for Yoast SEO.</a></p>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-auto-update\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:10:\"automedsys\";s:9:\"user_pass\";s:34:\"$P$BVxas/Qlhqfgdd7V5Fqw7wQ83TawMV1\";s:13:\"user_nicename\";s:10:\"automedsys\";s:10:\"user_email\";s:20:\"ameye@automedsys.com\";s:8:\"user_url\";s:26:\"http://blog.automedsys.net\";s:15:\"user_registered\";s:19:\"2022-06-15 15:53:56\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"automedsys\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:63:{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:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";s:10:\"86daee46a8\";s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(20,1,'wp_user-settings','libraryContent=browse'),(21,1,'wp_user-settings-time','1655338720'),(22,1,'_yoast_wpseo_profile_updated','1660172581'),(23,1,'session_tokens','a:1:{s:64:\"eb06f17501e6b7fd8f56bb249cdcf77e8fba173475ae6f19109e7428a7a6326e\";a:4:{s:10:\"expiration\";i:1690045995;s:2:\"ip\";s:15:\"174.249.179.215\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\";s:5:\"login\";i:1689873195;}}');
|
||
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_users`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_users`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_users` (
|
||
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
`user_status` int NOT NULL DEFAULT '0',
|
||
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
||
PRIMARY KEY (`ID`),
|
||
KEY `user_login_key` (`user_login`),
|
||
KEY `user_nicename` (`user_nicename`),
|
||
KEY `user_email` (`user_email`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_users`
|
||
--
|
||
|
||
LOCK TABLES `wp_users` WRITE;
|
||
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
|
||
INSERT INTO `wp_users` VALUES (1,'automedsys','$P$BVxas/Qlhqfgdd7V5Fqw7wQ83TawMV1','automedsys','ameye@automedsys.com','http://blog.automedsys.net','2022-06-15 15:53:56','',0,'automedsys');
|
||
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_yoast_indexable`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_yoast_indexable`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_yoast_indexable` (
|
||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||
`permalink` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
`permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`object_id` bigint DEFAULT NULL,
|
||
`object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`author_id` bigint DEFAULT NULL,
|
||
`post_parent` bigint DEFAULT NULL,
|
||
`title` text COLLATE utf8mb4_unicode_520_ci,
|
||
`description` mediumtext COLLATE utf8mb4_unicode_520_ci,
|
||
`breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
|
||
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`is_public` tinyint(1) DEFAULT NULL,
|
||
`is_protected` tinyint(1) DEFAULT '0',
|
||
`has_public_posts` tinyint(1) DEFAULT NULL,
|
||
`number_of_pages` int unsigned DEFAULT NULL,
|
||
`canonical` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
`primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`primary_focus_keyword_score` int DEFAULT NULL,
|
||
`readability_score` int DEFAULT NULL,
|
||
`is_cornerstone` tinyint(1) DEFAULT '0',
|
||
`is_robots_noindex` tinyint(1) DEFAULT '0',
|
||
`is_robots_nofollow` tinyint(1) DEFAULT '0',
|
||
`is_robots_noarchive` tinyint(1) DEFAULT '0',
|
||
`is_robots_noimageindex` tinyint(1) DEFAULT '0',
|
||
`is_robots_nosnippet` tinyint(1) DEFAULT '0',
|
||
`twitter_title` text COLLATE utf8mb4_unicode_520_ci,
|
||
`twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
`twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
`twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
|
||
`open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
|
||
`open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
`open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
|
||
`open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
|
||
`open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
|
||
`link_count` int DEFAULT NULL,
|
||
`incoming_link_count` int DEFAULT NULL,
|
||
`prominent_words_version` int unsigned DEFAULT NULL,
|
||
`created_at` datetime DEFAULT NULL,
|
||
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||
`blog_id` bigint NOT NULL DEFAULT '1',
|
||
`language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
`has_ancestors` tinyint(1) DEFAULT '0',
|
||
`estimated_reading_time_minutes` int DEFAULT NULL,
|
||
`version` int DEFAULT '1',
|
||
`object_last_modified` datetime DEFAULT NULL,
|
||
`object_published_at` datetime DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_yoast_indexable`
|
||
--
|
||
|
||
LOCK TABLES `wp_yoast_indexable` WRITE;
|
||
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
|
||
INSERT INTO `wp_yoast_indexable` VALUES (1,'https://blog.automedsys.net/author/automedsys/','46:512e5d7983116057e6ff5d31ca92ba60',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/c912e2a5de08f28abcf6711dcc6fe2ef?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/c912e2a5de08f28abcf6711dcc6fe2ef?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2022-06-16 00:13:36','2023-07-20 17:31:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-20 17:31:31','2022-06-15 15:53:56'),(2,'http://blog.automedsys.net/wp-content/uploads/2022/06/logo.42c1bf3b.png','71:e6e4cef33fabe92eefb70b428f18c445',18,'post','attachment',1,0,NULL,NULL,'logo.42c1bf3b','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/logo.42c1bf3b.png',NULL,'18','attachment-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/logo.42c1bf3b.png','18','attachment-image','{\"width\":525,\"height\":165,\"filesize\":45849,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2022/06/logo.42c1bf3b.png\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/06/logo.42c1bf3b.png\",\"size\":\"full\",\"id\":18,\"alt\":\"\",\"pixels\":86625,\"type\":\"image/png\"}',NULL,NULL,NULL,'2022-06-16 00:13:36','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-15 18:06:24','2022-06-15 18:06:24'),(3,'https://blog.automedsys.net/?page_id=3','38:df6775bb53921b4bb1e285bd843eaa14',3,'post','page',1,0,NULL,NULL,'Privacy Policy','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-06-16 00:13:36','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-15 15:53:56','2022-06-15 15:53:56'),(4,'https://blog.automedsys.net/sample-page/','40:f20c039c87777db61808b1d0dd8d2bda',2,'post','page',1,0,NULL,NULL,'autoMedSys','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-06-16 00:13:36','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,0,1,2,'2022-06-16 01:01:37','2022-06-15 15:53:56'),(5,'https://blog.automedsys.net/how-smart-patient-scheduling-impacts-the-bottom-line/','81:1b14dc525e0a0e646eb73fdd6612b914',5,'post','post',1,0,NULL,NULL,'How Smart Patient Scheduling Impacts the Bottom line.','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://blog.automedsys.net/wp-content/uploads/2022/06/scheduling.jpg',NULL,'38','featured-image',NULL,NULL,'https://blog.automedsys.net/wp-content/uploads/2022/06/scheduling.jpg','38','featured-image','{\"width\":800,\"height\":600,\"filesize\":106188,\"url\":\"https://blog.automedsys.net/wp-content/uploads/2022/06/scheduling.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/06/scheduling.jpg\",\"size\":\"full\",\"id\":38,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2022-06-16 00:13:36','2022-09-03 02:27:48',1,NULL,NULL,NULL,NULL,0,1,2,'2022-08-11 00:54:48','2022-06-15 17:29:23'),(6,'https://blog.automedsys.net/low-overhead-versus-over-your-head-patient-charting/','80:0049a1abefe91d071ef1a364ddbd0794',10,'post','post',1,0,NULL,NULL,'Low Overhead versus “Over your Head” Patient Charting.','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/overhead.jpg',NULL,'37','featured-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/overhead.jpg','37','featured-image','{\"width\":800,\"height\":600,\"filesize\":142937,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2022/06/overhead.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/06/overhead.jpg\",\"size\":\"full\",\"id\":37,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2022-06-16 00:13:36','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,0,1,2,'2022-08-11 00:50:14','2022-06-15 17:56:20'),(7,'https://blog.automedsys.net/your-practice-data-safety-best-practices/','69:4eff15344eddb89172f7e94eca498089',13,'post','post',1,0,NULL,NULL,'Your Practice Data Safety Best Practices.','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://blog.automedsys.net/wp-content/uploads/2022/08/health-security.jpg',NULL,'35','featured-image',NULL,NULL,'https://blog.automedsys.net/wp-content/uploads/2022/08/health-security.jpg','35','featured-image','{\"width\":800,\"height\":600,\"filesize\":79907,\"url\":\"https://blog.automedsys.net/wp-content/uploads/2022/08/health-security.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/08/health-security.jpg\",\"size\":\"full\",\"id\":35,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2022-06-16 00:13:36','2022-09-03 02:27:41',1,NULL,NULL,NULL,NULL,0,0,2,'2022-08-11 00:18:20','2022-06-15 17:56:53'),(8,'https://blog.automedsys.net/running-the-practice-or-running-around-the-practice/','80:c9f2ccc494ae4ef5122a09e8284e200c',15,'post','post',1,0,NULL,NULL,'Running the Practice or Running Around the Practice.','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://blog.automedsys.net/wp-content/uploads/2022/06/test-site-app.jpg',NULL,'28','featured-image',NULL,NULL,'https://blog.automedsys.net/wp-content/uploads/2022/06/test-site-app.jpg','28','featured-image','{\"width\":800,\"height\":600,\"filesize\":51818,\"url\":\"https://blog.automedsys.net/wp-content/uploads/2022/06/test-site-app.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/06/test-site-app.jpg\",\"size\":\"full\",\"id\":28,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2022-06-16 00:13:36','2022-09-03 02:26:41',1,NULL,NULL,NULL,NULL,0,2,2,'2022-09-03 00:45:15','2022-06-15 17:57:28'),(10,'https://blog.automedsys.net/category/uncategorized/','51:ed5b244dcd13e1f51803a360e8d8edde',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-06-16 00:13:36','2023-07-20 17:31:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-20 17:31:31','2022-06-15 17:29:23'),(11,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-06-16 00:13:36','2022-09-03 02:50:32',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(12,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-06-16 00:13:36','2022-09-03 01:54:52',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(13,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-06-16 00:13:36','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(14,'https://blog.automedsys.net/','28:b80343321ea99b1e3317f755ab054bb8',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Automated Medical Records Systems ','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,NULL,NULL,'2022-06-16 00:13:36','2023-07-20 17:31:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-20 17:31:31','2022-06-15 17:29:23'),(16,NULL,NULL,25,'post','wp_global_styles',1,0,NULL,NULL,'Custom Styles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-06-16 00:20:47','2022-06-17 01:06:42',1,NULL,NULL,NULL,NULL,0,NULL,0,'2022-06-16 00:20:46','2022-06-16 00:20:46'),(17,'http://blog.automedsys.net/wp-content/uploads/2022/06/test-site-app.jpg','71:6ce50ce523e5aeab8fd592f72174b433',28,'post','attachment',1,15,NULL,NULL,'test-site-app','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/test-site-app.jpg',NULL,'28','attachment-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/test-site-app.jpg','28','attachment-image','{\"width\":800,\"height\":600,\"filesize\":51818,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2022/06/test-site-app.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/06/test-site-app.jpg\",\"size\":\"full\",\"id\":28,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-06-16 01:02:54','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-06-16 01:02:54','2022-06-16 01:02:54'),(22,'http://blog.automedsys.net/wp-content/uploads/2022/08/health-security.jpg','73:94533ca7ed19103351839fdcbde965cc',35,'post','attachment',1,0,NULL,NULL,'health-security','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/08/health-security.jpg',NULL,'35','attachment-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/08/health-security.jpg','35','attachment-image','{\"width\":800,\"height\":600,\"filesize\":79907,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2022/08/health-security.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/08/health-security.jpg\",\"size\":\"full\",\"id\":35,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-08-11 00:17:45','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-11 00:17:44','2022-08-11 00:17:44'),(23,NULL,NULL,36,'post','wp_global_styles',1,0,NULL,NULL,'Custom Styles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-08-11 00:18:06','2022-09-03 00:33:27',1,NULL,NULL,NULL,NULL,0,NULL,0,'2022-08-11 00:18:06','2022-08-11 00:18:06'),(24,'http://blog.automedsys.net/wp-content/uploads/2022/06/overhead.jpg','66:6fdea03e67d6330e902996d2caf2ab25',37,'post','attachment',1,10,NULL,NULL,'overhead','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/overhead.jpg',NULL,'37','attachment-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/overhead.jpg','37','attachment-image','{\"width\":800,\"height\":600,\"filesize\":142937,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2022/06/overhead.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/06/overhead.jpg\",\"size\":\"full\",\"id\":37,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-08-11 00:50:09','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-08-11 00:50:09','2022-08-11 00:50:09'),(25,'http://blog.automedsys.net/wp-content/uploads/2022/06/scheduling.jpg','68:7c009990f1612a8d3edd4a8aa9e5de5f',38,'post','attachment',1,5,NULL,NULL,'scheduling','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/scheduling.jpg',NULL,'38','attachment-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/06/scheduling.jpg','38','attachment-image','{\"width\":800,\"height\":600,\"filesize\":106188,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2022/06/scheduling.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/06/scheduling.jpg\",\"size\":\"full\",\"id\":38,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-08-11 00:54:42','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-08-11 00:54:41','2022-08-11 00:54:41'),(27,'http://blog.automedsys.net/wp-content/uploads/2022/08/back-blog.jpg','67:cb46d98b34940b1e2e886e1ca106a1eb',41,'post','attachment',1,0,NULL,NULL,'back-blog','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/08/back-blog.jpg',NULL,'41','attachment-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/08/back-blog.jpg','41','attachment-image','{\"width\":3000,\"height\":400,\"filesize\":85752,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2022/08/back-blog.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2022/08/back-blog.jpg\",\"size\":\"full\",\"id\":41,\"alt\":\"\",\"pixels\":1200000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-08-11 08:59:51','2022-09-04 16:13:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-11 08:59:51','2022-08-11 08:59:51'),(29,'http://blog.automedsys.net/wp-content/uploads/2022/09/automedsys-icon.png','73:a345549c1ebed28a982532e73f8b0ba9',48,'post','attachment',1,0,NULL,NULL,'automedsys-icon','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2022/09/automedsys-icon.png',NULL,'48','attachment-image',NULL,NULL,NULL,'48','attachment-image',NULL,NULL,NULL,NULL,'2022-09-04 16:15:11','2022-09-04 16:15:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-04 16:15:11','2022-09-04 16:15:11'),(31,'https://blog.automedsys.net/artificial-intelligence-in-your-practice/','69:99f4763c66ce99582d41eda9f1112e5b',53,'post','post',1,0,NULL,NULL,'Artificial Intelligence in your Practice','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2023/05/AI-Automedsys.jpg',NULL,'56','featured-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2023/05/AI-Automedsys.jpg','56','featured-image','{\"width\":800,\"height\":600,\"filesize\":180331,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2023/05/AI-Automedsys.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2023/05/AI-Automedsys.jpg\",\"size\":\"full\",\"id\":56,\"alt\":\"Artificial intelligence\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2023-05-19 01:37:30','2023-05-19 01:51:32',1,NULL,NULL,NULL,NULL,0,2,2,'2023-05-19 01:51:32','2023-05-19 01:39:23'),(32,'http://blog.automedsys.net/wp-content/uploads/2023/05/AI-Automedsys.jpg','71:310e45aa1477640d73837eb25f07fb8e',56,'post','attachment',1,53,NULL,NULL,'AI-Automedsys','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2023/05/AI-Automedsys.jpg',NULL,'56','attachment-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2023/05/AI-Automedsys.jpg','56','attachment-image','{\"width\":800,\"height\":600,\"filesize\":180331,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2023/05/AI-Automedsys.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2023/05/AI-Automedsys.jpg\",\"size\":\"full\",\"id\":56,\"alt\":\"Artificial intelligence\",\"pixels\":480000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2023-05-19 01:51:06','2023-05-19 01:51:28',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-05-19 01:51:28','2023-05-19 01:51:06'),(33,'https://blog.automedsys.net/artificial-intelligence-in-medical-diagnosis/','73:e7a224160c278e079e7d228225de9f65',58,'post','post',1,0,NULL,NULL,'Artificial Intelligence in Medical Diagnosis','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2023/07/ai-diagnosis.jpg',NULL,'60','featured-image',NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2023/07/ai-diagnosis.jpg','60','featured-image','{\"width\":800,\"height\":600,\"filesize\":210619,\"url\":\"http://blog.automedsys.net/wp-content/uploads/2023/07/ai-diagnosis.jpg\",\"path\":\"/var/www/html/blog/public/wp-content/uploads/2023/07/ai-diagnosis.jpg\",\"size\":\"full\",\"id\":60,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2023-07-20 17:14:24','2023-07-20 17:31:32',1,NULL,NULL,NULL,NULL,0,3,2,'2023-07-20 17:31:31','2023-07-20 17:14:24'),(34,'http://blog.automedsys.net/wp-content/uploads/2023/07/ai-diagnosis.jpg','70:e829e6bad322a46f8fbc74e65db50862',60,'post','attachment',1,0,NULL,NULL,'ai-diagnosis','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://blog.automedsys.net/wp-content/uploads/2023/07/ai-diagnosis.jpg',NULL,'60','attachment-image',NULL,NULL,NULL,'60','attachment-image',NULL,NULL,NULL,NULL,'2023-07-20 17:31:13','2023-07-20 17:31:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-07-20 17:31:13','2023-07-20 17:31:13');
|
||
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_yoast_indexable_hierarchy`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_yoast_indexable_hierarchy` (
|
||
`indexable_id` int unsigned NOT NULL,
|
||
`ancestor_id` int unsigned NOT NULL,
|
||
`depth` int unsigned DEFAULT NULL,
|
||
`blog_id` bigint NOT NULL DEFAULT '1',
|
||
PRIMARY KEY (`indexable_id`,`ancestor_id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_yoast_indexable_hierarchy`
|
||
--
|
||
|
||
LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
|
||
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
|
||
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (1,0,0,1),(2,0,0,1),(3,0,0,1),(4,0,0,1),(5,0,0,1),(6,0,0,1),(7,0,0,1),(8,0,0,1),(10,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(17,8,1,1),(22,0,0,1),(24,6,1,1),(25,5,1,1),(27,0,0,1),(31,0,0,1),(32,31,1,1),(33,0,0,1),(34,0,0,1);
|
||
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_yoast_migrations`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_yoast_migrations`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_yoast_migrations` (
|
||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||
`version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_yoast_migrations`
|
||
--
|
||
|
||
LOCK TABLES `wp_yoast_migrations` WRITE;
|
||
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
|
||
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404');
|
||
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_yoast_primary_term`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_yoast_primary_term`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_yoast_primary_term` (
|
||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||
`post_id` bigint DEFAULT NULL,
|
||
`term_id` bigint DEFAULT NULL,
|
||
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||
`created_at` datetime DEFAULT NULL,
|
||
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||
`blog_id` bigint NOT NULL DEFAULT '1',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_yoast_primary_term`
|
||
--
|
||
|
||
LOCK TABLES `wp_yoast_primary_term` WRITE;
|
||
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_yoast_seo_links`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_yoast_seo_links`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!50503 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_yoast_seo_links` (
|
||
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
`url` varchar(255) DEFAULT NULL,
|
||
`post_id` bigint unsigned DEFAULT NULL,
|
||
`target_post_id` bigint unsigned DEFAULT NULL,
|
||
`type` varchar(8) DEFAULT NULL,
|
||
`indexable_id` int unsigned DEFAULT NULL,
|
||
`target_indexable_id` int unsigned DEFAULT NULL,
|
||
`height` int unsigned DEFAULT NULL,
|
||
`width` int unsigned DEFAULT NULL,
|
||
`size` int unsigned DEFAULT NULL,
|
||
`language` varchar(32) DEFAULT NULL,
|
||
`region` varchar(32) DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_yoast_seo_links`
|
||
--
|
||
|
||
LOCK TABLES `wp_yoast_seo_links` WRITE;
|
||
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_yoast_seo_links` 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-08-22 15:49:37
|